    /* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    opacity: 100;
}

/* Tooltip text */
.tooltip .tooltipText {
    font-family: "Lucida Grande", Arial, Helvetica, sans-serif;
    visibility: hidden;
    background-color: rgba(49,49,49,255);
    border: solid 1px #ffffff;
    color: rgba(233,233,233,255);
    text-align: center;
    padding: 5px;

    /* Position the tooltip text - see examples below! */
    position: absolute;
    top: 80%;
    left: 90%;
    z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltipText {
    visibility: visible;
}
